HEX
Server: Apache/2.4.68 (Debian)
System: Linux as-cs-widget-demo-us-central1 6.1.0-44-cloud-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.164-1 (2026-03-09) x86_64
User: root (0)
PHP: 8.2.32
Disabled: NONE
Upload Files
File: /var/www/kevin-demo/wp-content/plugins/wp-rocket/inc/Engine/Admin/RocketInsights/Queue/Queue.php
<?php
declare(strict_types=1);

namespace WP_Rocket\Engine\Admin\RocketInsights\Queue;

use WP_Rocket\Engine\Common\Queue\AbstractASQueue;

/**
 * Rocket Insights Queue
 *
 * Manages Action Scheduler jobs for Rocket Insights workflow
 */
class Queue extends AbstractASQueue {

	/**
	 * Queue group for Rocket Insights.
	 *
	 * @var string
	 */
	protected $group = 'rocket-insights';

	/**
	 * Cleanup old tests hook.
	 *
	 * @var string
	 */
	private $credit_reset_hook = 'rocket_insights_credit_reset';

	/**
	 * Retest hook.
	 *
	 * @var string
	 */
	private $retest_hook = 'rocket_insights_retest';

	/**
	 * Cancel reset job.
	 */
	public function cancel_credit_reset_job(): void {
		if ( ! $this->is_scheduled( $this->credit_reset_hook ) ) {
			return;
		}
		$this->cancel( $this->credit_reset_hook );
	}

	/**
	 * Cancel reset job.
	 */
	public function cancel_retest_job(): void {
		if ( ! $this->is_scheduled( $this->retest_hook ) ) {
			return;
		}
		$this->cancel( $this->retest_hook );
	}

	/**
	 * Schedule reset task.
	 *
	 * @return void
	 */
	public function schedule_credit_reset_task() {
		// Schedule weekly cleanup.
		$this->schedule_recurring(
			time(),
			MONTH_IN_SECONDS,
			$this->credit_reset_hook,
			[],
			1
		);
	}

	/**
	 * Schedule retest task.
	 *
	 * @param int|null $interval Schedule interval.
	 *
	 * @return void
	 */
	public function schedule_retest_task( $interval = null ) {
		// Schedule weekly cleanup.
		$this->schedule_recurring(
			time() + $interval,
			$interval ?? MONTH_IN_SECONDS,
			$this->retest_hook,
			[],
			1
		);
	}

	/**
	 * Cancel all scheduled tasks.
	 *
	 * @return void
	 */
	public function cancel_all_tasks() {
		$this->cancel_credit_reset_job();
		$this->cancel_retest_job();
	}

	/**
	 * Deprecate old AS actions.
	 *
	 * @return void
	 */
	public function deprecate_old_actions() {
		$this->deprecate_action( 'rocket_pma_credit_reset' );
		$this->deprecate_action( 'rocket_insights_retest' );
	}
}